From: Richard M. Stallman Date: Tue, 9 Mar 1993 17:48:56 +0000 (+0000) Subject: (command-apropos): Print echo area message iff found symbols. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96981 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=78e3ef3ce66a4f6f5b53fdc920370915bd07b08f;p=emacs.git (command-apropos): Print echo area message iff found symbols. --- diff --git a/lisp/help.el b/lisp/help.el index 95d08297361..3be32b6ce57 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -381,8 +381,8 @@ documentation found." (let ((message (let ((standard-output (get-buffer-create "*Help*"))) (print-help-return-message 'identity)))) - (apropos string t 'commandp) - (and message (message message)))) + (if (apropos string t 'commandp) + (and message (message message))))) (defun locate-library (library &optional nosuffix) "Show the full path name of Emacs library LIBRARY.